home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / Wirecast 2.0.dmg / Wirecast.app / Contents / Resources / dialogs_gui.xml < prev    next >
Encoding:
Extensible Markup Language  |  2005-05-25  |  4.8 KB  |  112 lines

  1. <?xml version="1.0" encoding="utf-8" ?>
  2.  
  3. <app name="prefs">
  4.     <sash>
  5.         <eSash name="alert_sash" gui="gui_alert" />
  6.         <eSash name="request_sash" gui="gui_request" />
  7.     </sash>
  8.     
  9.     <keymaps>
  10.         <map name="map_dialog">
  11.             <keys command="cmd_dialog_escape" win="Esc" mac="Esc" />
  12.             <keys command="cmd_dialog_default" win="Rtn" mac="Rtn" />
  13.         </map>
  14.     </keymaps>
  15.     
  16.     <windows>
  17.         <window only_for_os="win" name="dialog_alert" sash="alert_sash" keymap="map_dialog" 
  18.                 observer_handler="main" title="Warning" 
  19.                 menu_bar="dialog" menu_group="shared" modal_to_window="1"
  20.                 center_as_dialog="1" no_resize="true">
  21.             <rect name="content" left="100" top="150" width="100" height="100" />
  22.         </window>
  23.  
  24.         <window only_for_os="mac" name="dialog_alert" sash="alert_sash" keymap="parent" 
  25.                 observer_handler="main" title="Warning" no_resize="true"
  26.                 menu_bar="dialog" menu_group="shared" modal_to_window="1" >
  27.             <rect name="content" left="100" top="150" right="400" bottom="250" />
  28.         </window>
  29.  
  30.         <window only_for_os="win" name="dialog_request" sash="request_sash" keymap="map_dialog" 
  31.                 observer_handler="main" title="Request" 
  32.                 menu_bar="dialog" menu_group="shared" modal_to_window="1"
  33.                 center_as_dialog="1" no_resize="true">
  34.             <rect name="content" left="100" top="150" width="300" height="90" />
  35.         </window>
  36.         
  37.         <window only_for_os="mac" name="dialog_request" sash="request_sash" keymap="parent" 
  38.                 observer_handler="main" title="Request" no_resize="true"
  39.                 menu_bar="dialog" menu_group="shared" modal_to_window="1">
  40.             <rect name="content" left="100" top="150" width="300" height="90" />
  41.         </window>
  42.     </windows>
  43.     
  44.     <gui>
  45.         <!-- WINDOWS -->
  46.         
  47.         <eFlow only_for_os="win" direction="v" name="gui_alert" pin="ltrb" border="10,10,10,10" min_width="180" gap="10">
  48.             <eFlow direction="h" gap="10">
  49.                 <eIconButton weight="0" icon="alert_icon.png" borderless="true" pin="tl"/>
  50.                 <eFlow direction="v" gap="8" name="message_flow">
  51.                     <eStaticText name="dialog_msg" min_width="250" font_id="bold_default"/>
  52.                     <eStaticText name="dialog_msg2" min_width="250" font_id="small"/>
  53.                     <eView weight="0" />
  54.                     <eCheckBox weight="0" name="cb_show_again" title="dialog_do_not_tell_again" command="cmd_dialog_checkbox"/>
  55.                 </eFlow>
  56.             </eFlow>
  57.             
  58.             <eFlow weight="0" name="button_flow" direction="h" gap="15">
  59.                 <eView width="30" />
  60.                 <eButton weight="0" name="btn_ok" pin="v" title="OK" command="cmd_dialog_ok" default_button="true"/>
  61.                 <eButton weight="0" name="btn_cancel" pin="v" title="Cancel" command="cmd_dialog_cancel" />
  62.                 <eButton weight="0" name="btn_other" pin="v" command="cmd_dialog_other" />
  63.             </eFlow>
  64.         </eFlow>
  65.         
  66.         <eFlow only_for_os="win" direction="v" min_width="370" name="gui_request" pin="ltrb" border="20,20,20,20" gap="5">
  67.             <eStaticText name="dialog_msg" min_width="250" />
  68.             <eTextField name="dialog_text" text=""/>
  69.             <eView />
  70.             <eFlow weight="0" direction="h" pin="ltrb" gap="10">
  71.                 <eView />
  72.                 <eButton name="btn_ok" pin="hv" title="OK" command="cmd_dialog_ok" min_width="90" default_button="true"/>
  73.                 <eButton name="btn_cancel" pin="hv" title="Cancel" command="cmd_dialog_cancel" min_width="90"/>
  74.                 <eButton name="btn_other" pin="hv" command="cmd_dialog_other" min_width="90" visible="0"/>
  75.             </eFlow>
  76.         </eFlow>
  77.         
  78.         <!-- MACINTOSH -->
  79.         
  80.         <eFlow only_for_os="mac" direction="v" name="gui_alert" pin="ltrb" border="30,20,20,20" min_width="450" gap="10">
  81.             <eFlow direction="h" gap="20">
  82.                 <eIconButton weight="0" icon="AppIcon.png" borderless="true" pin="tl"/>
  83.                 <eFlow direction="v" gap="5" name="message_flow">
  84.                     <eStaticText name="dialog_msg" font_id="bold_default" />
  85.                     <eStaticText name="dialog_msg2" font_id="small"/>
  86.                     <eCheckBox weight="0" name="cb_show_again" title="dialog_do_not_tell_again" command="cmd_dialog_checkbox"/>
  87.                 </eFlow>
  88.             </eFlow>
  89.             
  90.             <eFlow weight="0" name="button_flow" direction="h" gap="15">
  91.                 <eView width="69" />
  92.                 <eButton weight="0" name="btn_other" pin="v" command="cmd_dialog_other" min_width="80"/>
  93.                 <eView />
  94.                 <eButton weight="0" name="btn_cancel" pin="v" title="Cancel" command="cmd_dialog_cancel" min_width="80"/>
  95.                 <eButton weight="0" name="btn_ok" pin="v" title="OK" command="cmd_dialog_ok" min_width="80" default_button="true"/>
  96.             </eFlow>
  97.         </eFlow>
  98.  
  99.         <eFlow only_for_os="mac" direction="v" min_width="370" name="gui_request" pin="ltrb" border="20,20,20,20" gap="5">
  100.             <eStaticText name="dialog_msg" />
  101.             <eTextField name="dialog_text" text=""/>
  102.             <eView />
  103.             <eFlow weight="0" direction="h" pin="ltrb" gap="10">
  104.                 <eView />
  105.                 <eButton name="btn_other" pin="hv" command="cmd_dialog_other" min_width="90"/>
  106.                 <eButton name="btn_cancel" pin="hv" title="Cancel" command="cmd_dialog_cancel" min_width="90"/>
  107.                 <eButton name="btn_ok" pin="hv" title="OK" command="cmd_dialog_ok" min_width="90" default_button="true"/>
  108.             </eFlow>
  109.         </eFlow>
  110.     </gui>
  111. </app>
  112.